Welcome![Sign In][Sign Up]
Location:
Search - X Y Z

Search list

[Data structsData_struct_1

Description: 数据结构课后设计题第一章 ◆1.16② 试写一算法,如果三个整数X,Y和Z 的值不是依次非递增的,则通过交换,令其为 非递增。 要求实现下列函数: void Descend(int &x, int &y, int &z) void Descend(int &x, int &y, int &z) { int temp if(x<=y){temp=x x=y y=temp } if(y<=z){temp=y y=z z=temp } if(x<=y){temp=x x=y y=temp } printf(" d, d, d",x,y,z) } -Data structure design question after class the first chapter ◆ 1.16 ② try to write a method, if the three integers X, Y and Z values not followed by non-increasing, through the exchange, make it a non-incremental. Required to achieve the following functions: void Descend (int & x, int & y, int & z) void Descend (int & x, int & y, int & z) (int temp if (x < = y) (temp = x x = y y = temp ) if (y < = z) (temp = y y = z z = temp ) if (x < = y) (temp = x x = y y = temp ) printf (" d, d, d " , x, y, z) )
Platform: | Size: 2048 | Author: 苏文俊 | Hits:

[AlgorithmWGS94

Description: 同一坐标系下的经纬度坐标转换为X,Y,Z坐标-The same coordinates latitude and longitude coordinates into X, Y, Z coordinates
Platform: | Size: 1024 | Author: longxinqiang | Hits:

[CSharpAddXYData

Description: 读取shp坐标系信息,用坐标(x,y,z)生成shp文件的源代码。稍作修改即可使用-Read shp coordinate system information, use the coordinates (x, y, z) generate shp files of source code. You can use some modifications
Platform: | Size: 79872 | Author: | Hits:

[Crack Hack1008

Description: Julius Caesar曾经使用过一种很简单的密码。对于明文中的每个字符,将它用它字母表中后5位对应的字符来代替,这样就得到了密文。比如字符A用F来代替。如下是密文和明文中字符的对应关系。 密文 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 明文 V W X Y Z A B C D E F G H I J K L M N O P Q R S T U 你的任务是对给定的密文进行解密得到明文。 你需要注意的是,密文中出现的字母都是大写字母。密文中也包括非字母的字符,对这些字符不用进行解码。 -Julius Caesar had used a very simple passwords. To express each of the characters in its alphabet with its corresponding character after the 5 to replace, so get the ciphertext. A character such as using F instead. Here are the characters in the ciphertext and plaintext correspondence. Ciphertext ABCDEFGHIJKLMNOPQRSTU VWXYZ expressly VWXYZABCDEFGHIJKLMNOP QRSTU Your task is given to decrypt the ciphertext be clear. You need to note that the ciphertext letter appears in all capital letters. Ciphertext also includes non-alphabetic characters, these characters without decoding.
Platform: | Size: 1024 | Author: dvd | Hits:

[3D GraphicCoordinateAndColorBar

Description: VTK 坐标轴和颜色条的使用,利用自己的坐标(x,y,z)进行可视化,字体设置,一个综合性的例子,希望对大家用所帮助!-VTK axis and bands to use, make use of its coordinates (x, y, z) to visualize, font setting, a comprehensive example, we want to use the help!
Platform: | Size: 1024 | Author: leexiaozh | Hits:

[JSP/Javagenetic_algorithm

Description: 基于求函数f(x,y,z)=xyz*sin(xyz)最大值问题的演示程序-Based on demand function f (x, y, z) = xyz* sin (xyz) Maximizing demo
Platform: | Size: 7441408 | Author: yefei | Hits:

[SCM101159

Description: 7260采样程序,对三维的x y z三个轴进行实时采样,并进行24位转换-7260 sampling program on the three-dimensional xyz three axes in real-time sampling, and for 24-bit conversion
Platform: | Size: 215040 | Author: 英宇 | Hits:

[OpenGL programvc_opengl_programme

Description: 用VC++写的程序,用户可以调整显示对象在x,y,z轴的角度,是一个非常不错的入门程序。-this program is wrote by VC++,user can adjust the angle to display the object at x,y,z axis. it is a very good program, suitable for the beginner.
Platform: | Size: 24576 | Author: wang | Hits:

[OpenGL programDrawGL02

Description: 如何在Matlab中通过混合编程的方式使用OpenGL。希望能抛砖引玉,大家共同讨论。 该程序基于Matlab6.5和VC6平台编译,运行后会显示一个彩色的三维坐标轴以及一个棋盘平面。使用方向键和9/0平移, x/y/z旋转。 程序的源文件为DrawGL02.cpp,在Matlab中通过mbuild -setup设置好VC编译器后,运行mex -O -v DrawGL02.cpp即可生成dll文件。然后再Matlab中运行DrawGL02即可。-How in the Matlab programming through mixed use OpenGL. Hope to initiate common discussion. The program is based on Matlab6.5 and VC6 platform to build and run will display a colorful three-dimensional coordinate axis and a checkerboard plane. Use the arrow keys and 9/0, pan, x/y/z rotation. Program source files for the DrawGL02.cpp, in Matlab, set by mbuild-setup VC Compiler, run the mex-O-v DrawGL02.cpp to generate dll file. DrawGL02 then you can run Matlab.
Platform: | Size: 3072 | Author: BB | Hits:

[Special Effectsthreepoint

Description: 输入任意三个点的x,y,z三点坐标,根据三个不在同一条直线上的点,可以确定一个圆的原理,来确定圆的圆心-Enter any three points x, y, z coordinates of three points, not on the same basis of three points on a straight line, to determine the principles of a circle to determine the center of the circle
Platform: | Size: 1874944 | Author: 宣钢 | Hits:

[matlabplot3k

Description: Generate a 3D point plot of L=(x,y,z) using the values in the vector c to determine the color of each point. If c is empty, then z (column 3 of L) is used to color the plot. The data points are sorted so that plot3 is only called once for each group of points that map to the same color. The upper and lower limits of the color range (and the z axis) can be defined with crange. This is useful for creating a series of plots with the same coloring. The colormap (but not the colorbar) is flipped upside down if crange is given as [max min] instead of [min max]. The figure handle is returned if an output argument is given.-Generate a 3D point plot of L=(x,y,z) using the values in the vector c to determine the color of each point. If c is empty, then z (column 3 of L) is used to color the plot. The data points are sorted so that plot3 is only called once for each group of points that map to the same color. The upper and lower limits of the color range (and the z axis) can be defined with crange. This is useful for creating a series of plots with the same coloring. The colormap (but not the colorbar) is flipped upside down if crange is given as [max min] instead of [min max]. The figure handle is returned if an output argument is given.
Platform: | Size: 4096 | Author: Jeff | Hits:

[assembly languagewjyl2

Description: 编程完成 Z=3x+4y-4,其中x、y为字节单元,z为字单元。如果x、y为字单元,z为双字单元,,如何修改程序,并运行,给出结果。-Programmed Z = 3 x+ 4y- 4, including x, y, Z for byte unit for word unit. If the x, y, z for word unit for double-word units, and how to modify the program, and run, the result is given.
Platform: | Size: 519168 | Author: 黄伟坡 | Hits:

[assembly languageTASM

Description: 应用于DSAP,完成X+Y=Z的运算过程,希望大家用得着-Applied to DSAP, complete X+ Y = Z in the computing process, I hope you need it
Platform: | Size: 1024 | Author: supperzhou | Hits:

[matlabGPS-Matlab

Description: 一个GPS课程的全部代码,含有数据!很实用-MATLAB GPS SCRIPTS-- Charles Meertens and Doug Miller, U. Utah 3Jan95 These scripts were developed for/during a class in GPS and Active Tectonics Department of Geology and Geophysics, U. Utah, Spring, 1994 EXAMPLE RINEX Files (the only ones guaranteed to work this release) CUR10911.94N CUR10911.94O PAR10910.94N PAR10910.94O Main Program scripts: gpshora.m -- function to calculate Modified Julian Day, Homework#1 HW2.m -- Homework#2 read RINEX observation file and plot C/A code vrs. time HW3_plt.m-- Homework#3 read RINEX navigation file, plot satellite positions HW3_3dplt.m-- Same as HW3_plt.m, but 3d position plots HW4.m-- Homework#4 calculate and plot station position as function of time Functions called: calc_nav.m-- calculate satellite position calc_pos1.m-- calculate station position constants.m-- GPS constants coords.m-- convert x,y,z coordinates to lat, long, height date2j.m-- calculate MDJ eccenr.m-- calculate "E" anomally read_nav.m-- Read RINEX Nav file r
Platform: | Size: 816128 | Author: 王楠 | Hits:

[Othersurfature

Description: [K,H,P1,P2] = surfature(X,Y,Z) returns the gaussian curvature of a surface (K), mean curvature (H), and principal curvatures (P1,P2). The inputs (X,Y,Z) are 2D arrays corresponding to the surface being analyzed. Example [X,Y,Z] = peaks [K,H,P1,P2] = surfature(X,Y,Z) surf(X,Y,Z,H, facecolor , interp ) set(gca, clim ,[-1,1]) -[K,H,P1,P2] = surfature(X,Y,Z) returns the gaussian curvature of a surface (K), mean curvature (H), and principal curvatures (P1,P2). The inputs (X,Y,Z) are 2D arrays corresponding to the surface being analyzed. Example [X,Y,Z] = peaks [K,H,P1,P2] = surfature(X,Y,Z) surf(X,Y,Z,H, facecolor , interp ) set(gca, clim ,[-1,1])
Platform: | Size: 1024 | Author: tao lu | Hits:

[OtherGMT_Manpages

Description: GMT_Manpages,GMT,The Generic Mapping Tools data processing and display software package. GMT is a collection of public-domain Unix tools that allows you to manipulate x,y and x,y,z data sets (filtering, trend fitting, gridding, projecting, etc.) and produce PostScript illustrations ranging from simple x-y plots, via contour maps, to artificially illuminated surfaces and 3-D perspective views in black/white or full color.
Platform: | Size: 887808 | Author: 柳波波 | Hits:

[assembly languagebinary_addition

Description: 本实验要求计算X+Y=Z,将结果Z输出到屏幕,其中X=001565A0H,Y=0021B79EH-In this study, the requirements in X+ Y = Z, Z output the results to the screen, where X = 001565A0H, Y = 0021B79EH
Platform: | Size: 6144 | Author: 全丽萍 | Hits:

[OpenGL programcuberotate

Description: 三维旋转立方体的实现,立方体不同的面颜色不同,实现沿x,y,z轴旋转-The realization of three-dimensional rotating cube, cube with different colors different faces to achieve along the x, y, z axis
Platform: | Size: 105472 | Author: 夏金瑶 | Hits:

[Picture Viewer3DSlice

Description: 将三维图像从X,Y,Z这三个方向上的任意深度的数据以二维切片显示-display the 2D slice from the 3D image data
Platform: | Size: 11764736 | Author: 小金 | Hits:

[3D Graphic3Drotation

Description: 目标绕x,y,z坐标轴旋转。turbo c-Targets around the x, y, z coordinate axis. turbo c
Platform: | Size: 1024 | Author: snen | Hits:
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 37 »

CodeBus www.codebus.net